home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 8 / Night Owl CD-ROM (NOPV8) (Night Owl Publisher) (1993).ISO / 017a / binutils.arj / README < prev    next >
Text File  |  1991-03-27  |  2KB  |  37 lines

  1. These files are some GNU utilities for operating on binary files.
  2. Note that GNU make, which used to be included here, is now distributed
  3. in a separate tar file.
  4.  
  5. Report bugs in these programs to bug-gnu-utils@prep.ai.mit.edu and use
  6. the top line of the ChangeLog as the version number for the program.
  7.  
  8. Define USG with `-DUSG' when compiling these programs to run on system V.
  9.  
  10. COFF is not supported, but we do support a way of encapsulating GNU
  11. executable files with COFF headers.  Use -DCOFF_ENCAPSULATE when you
  12. compile, to enable this feature.
  13.  
  14. In order to use encapsulation, you must use entirely GNU tools,
  15. including these plus GAS, GCC and GDB.  You will need to convert the
  16. system libraries to BSD object file format.  Use the shell script
  17. libconvert (which uses robotussin) for that.
  18.  
  19. The GNU version of ld has some interesting features:
  20.  
  21. 1. Undefined and multiply-defined global symbol errors
  22. are now associated with specific source files and line numbers,
  23. and printed in a format M-x next-error can parse.
  24.  
  25. 2. Normally no output is written if there are serious errors.
  26. Use the option `-noinhibit-exec' if you want an output file anyway.
  27.  
  28. 3. Global symbols can be defined by indirection to other symbols.
  29. See comments at definition of N_INDR in ld.c
  30.  
  31. 4. LD can accumulate sets of related values from all the object files
  32. that are being linked together, and put them into a vector that can
  33. be accessed at run time.  Thus, you can arrange for each file to have
  34. initializations to be run when your `main' function sees fit, without
  35. having to know the names of all the files that are linked together.
  36. See comments at definition of N_SETA, etc., in ld.c.
  37.